home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 14 / CU Amiga Magazine's Super CD-ROM 14 (1997)(EMAP Images)(GB)(Track 1 of 3)[!][issue 1997-09].iso / CUCD / Programming / Mesa-2.2 / src-glu / Makefile.BeOS < prev    next >
Encoding:
Makefile  |  1997-02-03  |  1.6 KB  |  74 lines

  1. # Makefile for GLU for BeOS contributed by
  2. # Tinic Uro <5uro@informatik.uni-hamburg.de>
  3.  
  4. # Mesa 3-D graphics library
  5. # Version:  2.2
  6. # Copyright (C) 1995-1997  Brian Paul
  7. #
  8. # This library is free software; you can redistribute it and/or
  9. # modify it under the terms of the GNU Library General Public
  10. # License as published by the Free Software Foundation; either
  11. # version 2 of the License, or (at your option) any later version.
  12. #
  13. # This library is distributed in the hope that it will be useful,
  14. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  16. # Library General Public License for more details.
  17. #
  18. # You should have received a copy of the GNU Library General Public
  19. # License along with this library; if not, write to the Free
  20. # Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  
  22.  
  23.  
  24. ##### MACROS #####
  25.  
  26. VPATH = RCS
  27.  
  28. INCDIR = ../include
  29. LIBDIR = ../lib
  30.  
  31. SOURCES = glu.c mipmap.c nurbs.c nurbscrv.c nurbssrf.c nurbsutl.c \
  32.     project.c quadric.c tess.c tesselat.c polytest.c
  33.  
  34. OBJECTS = $(SOURCES:.c=.o)
  35.  
  36.  
  37.  
  38. ##### RULES #####
  39.  
  40. .c.o:
  41.     $(CC) -c -I$(INCDIR) $(CFLAGS) $<
  42.  
  43.  
  44.  
  45. ##### TARGETS #####
  46.  
  47. default:
  48.     @echo "Specify a target configuration"
  49.  
  50. clean:
  51.     -rm *.o *~
  52.  
  53. targets: $(LIBDIR)/$(GLU_LIB)
  54.  
  55. # Make the library:
  56. $(LIBDIR)/$(GLU_LIB): $(OBJECTS)
  57. #    $(MAKELIB) $(GLU_LIB) $(OBJECTS)
  58. #    $(RANLIB) $(GLU_LIB)
  59. #    mv $(GLU_LIB)* $(LIBDIR)
  60.  
  61. include ../Make-config
  62.  
  63. include depend
  64.  
  65.  
  66.  
  67. #
  68. # Run 'make depend' to update the dependencies if you change what's included
  69. # by any source file.
  70. depend: $(SOURCES)
  71.     makedepend -fdepend -Y -I../include $(SOURCES)
  72.  
  73.